@charset "utf-8";
/* CSS Document */

body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f5f3ed;
}

/* Navbar styling (optional – adjust to match your site) */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px; /* adjust to your nav height */
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

/* Main container */
.auth-container {
  max-width: 1400px;
  margin: 120px auto 0; /* pushes content down below nav */
  padding: 40px 20px;
  position: relative;
}

/* Top corner badges */
.top-badges {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ghs-badge {
  background-color: #e63946;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

.icon-group {
  display: flex;
  gap: 8px;
}

.icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

.icon-circle.dark {
  background-color: #2d3436;
}

.icon-circle.blue {
  background-color: #4285f4;
}

/* Form wrapper */
.forms-wrapper {
  display: flex;
  gap: 60px;
  margin: 60px auto;
  max-width: 1100px;
  padding: 0 20px;
}

/* Form section box */
.form-section {
  flex: 1;
  background-color: white;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.form-section h2 {
  font-size: 32px;
  margin: 0 0 30px 0;
  color: #1a1a1a;
  font-weight: 600;
}

/* Inputs and labels */
.auth-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #ff9800;
}

/* Password eye icon */
.password-wrapper {
  position: relative;
}

.password-wrapper .form-input {
  padding-right: 45px;
}

.eye-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.checkbox-label {
  margin: 0;
  cursor: pointer;
  font-weight: normal;
}

/* Button */
.submit-btn {
  background-color: #ff9800;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
  width: fit-content;
}

.submit-btn:hover {
  background-color: #f57c00;
}

/* Links and text */
.forgot-link {
  color: #ff9800;
  text-decoration: none;
  font-size: 14px;
  margin-top: 15px;
  display: inline-block;
}

.forgot-link:hover {
  text-decoration: underline;
}

.privacy-text {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 20px 0;
}

.privacy-link {
  color: #ff9800;
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {
  .forms-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .top-badges {
    position: static;
    justify-content: flex-end;
    margin-bottom: 20px;
  }

  .auth-container {
    margin-top: 100px; /* smaller margin for mobile */
  }
}
